@import url('https://fonts.googleapis.com/css?family=Quicksand:400,700');

:root {
    /* Palette de couleur */
    --primary: #77bd7d;
    --primary-light: #d6d873;
    --primary-third: #271806;
    --gray: #7d7874;
    --gray-light: #e5e5e5;
    /*  */
    --accent: #0652dd;
    --warning: #ea2027;
    --success: #009432;
    --font-family: 'Quicksand', sans-serif;
    --font-size-small: 15px;
    --box-shadow: 0 1px 2px 0 rgb(60 64 67 / 30%),
        0 1px 3px 1px rgb(60 64 67 / 15%);
    --border-radius: 3px;
    --border: 1px solid #ddd;
    --color: #636466;
    --color-primary: white;
    --color-dark: #444;
    --gray-dark: #444;
    --max-width: 1200px;
    --footer-bg: #2c3e50;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Quicksand', sans-serif;
}

body {
    min-height: 100vh;
    font-family: var(--font-family);
    color: var(--color);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    background: #9de0a3;
    min-width: 200px;
}

h1,
h2,
h3,
h4,
h5 {
    color: var(--color-dark);
}

ul {
    list-style: none;
}

.content {
    max-width: var(--max-width);
}

a {
    text-decoration: none;
    color: inherit;
}

.flash-msg {
    color: white;
    padding: 10px;
    text-align: center;
    background-color: var(--primary-light);
    border-radius: 3px;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}
